home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / util / develope / mpwmacsb.cpt / Macsbug MPW Tool ƒ / debugstr.c < prev    next >
C/C++ Source or Header  |  1991-06-21  |  187b  |  12 lines

  1. #include <types.h>
  2. #include <stdio.h>
  3.  
  4. int main(int argc,char *argv[])
  5.   {
  6.     if (argc==2)
  7.         debugstr(argv[1]);
  8.      else
  9.         fprintf(stderr,"#Usage: %s string\n",argv[0]);
  10.     return argc!=2;
  11.   }
  12.